  /* Modal container */
  .video-modal {
      display: none;
      /* Initially hidden */
      position: fixed;
      z-index: 1000;
      /* Ensure it appears on top of other elements */
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      /* Prevent scrolling */
      background-color: rgba(0, 0, 0, 0.8);
      /* Semi-transparent black background */
      justify-content: center;
      /* Center the modal content */
      align-items: center;
  }

  /* Modal content container */
  .video-modal-content {
      position: relative;
      max-width: 90%;
      /* Limit size for responsiveness */
      max-height: 90%;
      /* Limit height for responsiveness */
      background-color: #000;
      /* Black background for the modal content */
      border-radius: 8px;
      overflow: hidden;
      /* Prevent video from spilling out */
  }

  /* Video inside modal */
  .video-modal-content video {
      width: 100%;
      height: auto;
      /* Maintain aspect ratio */
  }

  /* Close button */
  .close-btn-1 {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 30px;
      color: white;
      cursor: pointer;
      z-index: 10;
  }

  .close-btn:hover {
      color: red;
  }